b918d0020275dd0caf2c8ea28d94f5e5e91798c0,wicket/src/main/java/org/apache/wicket/request/resource/ResourceReference.java,ResourceReference,equals,#Object#,143
Before Change
return false;
}
ResourceReference that = (ResourceReference)obj;
return Objects.equal(scope, that.scope) && //
Objects.equal(name, that.name) && //
Objects.equal(locale, that.locale) && //
Objects.equal(style, that.style) && //
Objects.equal(variation, that.variation);
}
/**
After Change
return false;
}
ResourceReference that = (ResourceReference)obj;
return Objects.equal(data, that.data);
}
/**